home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / DEC / DI9512DH / textedit.dpr < prev    next >
Text File  |  1995-02-15  |  205b  |  12 lines

  1. program TextEdit;
  2.  
  3. uses
  4.   Forms,
  5.   MDIedit in 'MDIEDIT.PAS' {EditForm},
  6.   MDIFrame in 'MDIFRAME.PAS' {FrameForm};
  7.  
  8. begin
  9.   Application.CreateForm(TFrameForm, FrameForm);
  10.   Application.Run;
  11. end.
  12.